home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 42 / Amiga Format AFCD42 (Issue 126, Aug 1999).iso / -serious- / programming / other / wild / include / clib / savermodule_protos.h < prev    next >
C/C++ Source or Header  |  1999-05-25  |  715b  |  24 lines

  1. #ifndef CLIB_SAVERMODULE_PROTOS_H
  2. #define CLIB_SAVERMODULE_PROTOS_H
  3.  
  4. /*
  5. **    $VER: drawmodule_protos.h 2.01 (9.12.98)
  6. **
  7. **    modules libraries common prototypes.
  8. **
  9. */
  10.  
  11. #include <exec/types.h>
  12. #include <utility/tagitem.h>
  13.  
  14. void        SetModuleTags(struct WildApp *wapp,struct TagItem *tags);
  15. void        GetModuleTags(struct WildApp *wapp,struct TagItem *tags);
  16. BOOL        SetupModule(struct WildApp *wapp,struct TagItem *tags);
  17. void        CloseModule(struct WildApp *wapp);
  18. BOOL        RefreshModule(struct WildApp *wapp);
  19. ULONG        *SAVNewObj(ULONG type,void *prec,void *parent,void *wildobj);
  20. void        SAVSetObjAttr(struct WildApp *wapp,ULONG *obj,ULONG attr,ULONG value);
  21. void        SAVSaveObj(struct TagItem *tags);
  22. void        SAVFreeObj(void *obj);
  23.  
  24. #endc